home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / etc / network / if-up.d / avahi-daemon < prev    next >
Encoding:
Text File  |  2009-03-23  |  504 b   |  16 lines

  1. #!/bin/sh
  2.  
  3. # Don't run the avahi-daemon unicast local check while bringing up
  4. # the loopback device; it's not necessary until we bring up a real network
  5. # device
  6. [ "$IFACE" != "lo" ] || exit 0
  7.  
  8. # Bail out if resolvconf is installed
  9. [ -x /sbin/resolvconf ] && exit 0
  10.  
  11. # If we have an unicast .local domain, we immediately disable avahi to avoid
  12. # conflicts with the multicast IP4LL .local domain
  13. if [ -x /usr/lib/avahi/avahi-daemon-check-dns.sh ] ; then
  14.   exec /usr/lib/avahi/avahi-daemon-check-dns.sh
  15. fi
  16.